home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue30
/
clinic
/
DBCompU.pas
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1997-12-01
|
255 b
|
20 lines
unit DBCompU;
interface
uses
Classes;
type
TDBTest = class(TComponent)
private
FDatabaseName: String;
published
property DatabaseName: String
read FDatabaseName write FDatabaseName;
end;
implementation
end.